ThinkPHP5


think\Exception
library\think\Exception.php at line 14

Class Exception

\Exception
└─Exception
All Known Subclasses:
think\exception\DbException think\exception\ErrorException

public class Exception
extends \Exception


Method Summary
protected final void

setData(string label, array data)

设置异常额外的Debug数据 数据将会显示为下面的格式Exception Data -------------------------------------------------- Label 1 key1 value1 key2 value2 Label 2 key1 value1 key2 value2

final array

getData()

获取异常额外Debug数据 主要用于输出到异常页面便于调试

Method Detail

library\think\Exception.php at line 39

setData

protected final void setData(string label, array data)

设置异常额外的Debug数据 数据将会显示为下面的格式

Exception Data -------------------------------------------------- Label 1 key1 value1 key2 value2 Label 2 key1 value1 key2 value2

Parameters:
label - 数据分类,用于异常页面显示
data - 需要显示的数据,必须为关联数组

library\think\Exception.php at line 49

getData

public final array getData()

获取异常额外Debug数据 主要用于输出到异常页面便于调试

Returns:
由setData设置的Debug数据

ThinkPHP5